ObjectDB Database Search

1-50 of 200 results

Warmup ( preLoad all table rows into memory )

when my software boots up.   2-) Also for speed up I am inserting a message into table ... Hi , I have 3 questions for objectdb : 1-) How can i preload all table rows into memory in ... to prevent writing into disk for objectdb. So i can query from guava cachebuilder then objectdb. Do i

How to define database structure and insert some initial objects from scratch

a script ? In SQL world we have scripts like " insert into ..." - Can we use main objectdb.jar library

jakarta.persistence.OrderColumn.insertable

Jakarta Persistence (JPA) Method in jakarta.persistence.OrderColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.MapKeyColumn.insertable

Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.MapKeyJoinColumn.insertable

Jakarta Persistence (JPA) Method in jakarta.persistence.MapKeyJoinColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.JoinColumn.insertable

Jakarta Persistence (JPA) Method in jakarta.persistence.JoinColumn boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.Column.insertable

Jakarta Persistence (JPA) Method in jakarta.persistence.Column boolean insertable (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Default: true Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.CacheStoreMode

CacheStoreMode . Enum Constants BYPASS Don't insert into cache. Since: Jakarta Persistence (JPA) 1.0 REFRESH Insert /update entity data held in the cache when read from the database and when written ... USE Insert entity data into cache when read from database and insert /update entity data

JPA Class Enhancer

can be integrated into the build process. The following Maven configuration uses the exec-maven-plugin to integrate enhancement into the build process: ... ... ... org.codehaus.mojo exec-maven-plugin 1.6.0 ... into an ANT build script, as follows: Enhancement API The ObjectDB Enhancer can also be invoked from

jakarta.persistence.EntityManager

of the given new or detached entity instance into the current persistence context, resulting in, respectively, an insert or possible update when the persistence context is synchronized with the database ... and persistent, resulting in its insertion in the database when the persistence context

ObjectDB needs "insert ignore"

Hi, The command " insert ignore into " in mysql can avoid interruptions caused by program errors ... have to create a repeated topic. how to implement insert ignore in objectdb? gzdillon Lai Yang ... have to do this for inserting : @NamedQuery( name="isExistName", query="SELECT count(c) FROM Student c WHERE c

jakarta.persistence.CacheStoreMode.USE

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode USE Insert entity data into cache when read from database and insert /update entity data when written to the database: this is the default behavior. Does not force refresh of already cached items when reading from database. Since: Jakarta Persistence (JPA) 1.0

JPA Entity Fields

The fields of persistable user-defined classes (entity classes, embeddable classes, and mapped superclasses) can be classified into the following five groups: Transient fields Persistent fields ... long version; } If a version field exists, ObjectDB automatically injects the version value into

Detached JPA Entities

to the database unless you merge them back into an EntityManager , which makes them managed again. Detached ... a detached object back into a persistence context by using the merge method: Employee managedEmployee = em

JPA Extended API Reference Guide

Jakarta Persistence API (JPA) 3.2 documentation, generated from the official JavaDoc and enriched with practical notes. It groups the API types into logical sections to help you locate core concepts ... . The JPA types are organized in this reference into the following sections : Defines

Paths and Types in JPQL and Criteria API

expressions in the preceding code can be divided into two main groups: FROM variable expressions ... not affect the query directly. The constructed expression must be explicitly integrated into

jakarta.persistence.CacheStoreMode.BYPASS

Jakarta Persistence (JPA) Enum Constant in jakarta.persistence.CacheStoreMode BYPASS Don't insert into cache. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.EntityManager.merge(T)

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityManager T merge (    T entity ) Merge the state of the given new or detached entity instance into the current persistence context, resulting in, respectively, an insert or possible update when the persistence context

Numbers in JPQL and Criteria Queries

simple numeric values into more complex expressions. Arithmetic operators JPA supports

Retrieving JPA Entities

the entire database into memory, which is often unacceptable. You can exclude a persistent reference field

JPA Named Queries

literals dynamically into the query string, which results in more efficient queries. @NamedQuery

DELETE Queries in JPA/JPQL

As explained in Chapter 2 , you can delete entities from the database by following these steps: Retrieve the entities into an EntityManager . Remove these objects from the EntityManager within an active transaction, either explicitly by calling the remove method or implicitly through a cascading

JPA Container Injection Annotations

Jakarta Persistence (JPA) provides standard annotations to manage dependencies on container-managed persistence resources in both Jakarta EE and Spring Framework environments. They enable the container to inject EntityManager or EntityManagerFactory proxies directly into application components

Query Parameters in JPA

the name directly into the query as a String literal. Using literals instead of parameters

Database Schema Evolution

use of old entities after a schema change. When an entity with an old schema is loaded into memory

UPDATE SET Queries in JPA/JPQL

You can update existing entities, as explained in chapter 2 , by following these steps: Retrieve the entities into an EntityManager . Update the relevant entity fields within an active transaction. Apply the changes to the database by calling the commit method. JPQL UPDATE queries provide

ORDER BY clause (JPQL / Criteria API)

the results into groups. The ORDER BY clause then sorts these groups. For example: SELECT c

Managing JPA Entities

section discusses how to work with detached objects, including how to merge them back into

Database Explorer

, three tabbed windows appear on the left side of the Explorer: The Database window is split into two sub

JPA Primary Key

. When a primary key field is defined, ObjectDB automatically injects the primary key value into that field

Step 6: Design a BIRT Report Table

In this final step we will add a simple table to the report: Open the [ Insert Table] dialog box by dragging a Table from the [Palette] window and dropping it on the report design (.rptdesign) layout. Set the column number to 2 , number of details to 1 , select the data set (e.g. Points by X

Step 3: Define an EJB Session Bean

class and injects an instance of the EJB class into the servlet (as shown in the  next step ). Prepares an  EntityManager automatically and injects it into the  em field

Step 3: Define a Spring DAO Component

the instantiation of the DAO component class and injects an instance of the DAO component class into the controller, as shown in the next step. Prepares an  EntityManager automatically and injects it into

Step 3: Define a Spring DAO Component

the instantiation of the DAO component class and injects an instance of the DAO component class into the controller, as shown in the next step. Prepares an  EntityManager automatically and injects it into

Step 3: Define an EJB Session Bean

the instantiation of the EJB class and injects an instance of the EJB class into the servlet (as shown in the next step ). Prepares an EntityManager automatically and injects it into the em field

Step 4: Add a Controller Class

. A GuestDao component is automatically constructed and injected by Spring into the guestDao field

Step 2: Define a JPA Entity Class

the new class. Copy and paste the following code into the newly created Point class: package tutorial

Step 6: Set the Spring XML

To integrate the Spring Framework into a web application we have to add the definition of the Spring dispatcher servlet to the  web.xml configuration file and to configure that servlet using another xml configuration file. Open the  web.xml file (under src/main/webapp/WEB-INF) in a text

Step 6: Set the Spring XML

To integrate the Spring Framework into a web application we have to add the definition of the Spring dispatcher servlet to the web.xml configuration file and to configure that servlet using another xml configuration file. Open the web.xml file (under Web Pages WEB-INF) in a text editor (by right

Java EE 6 JPA Tutorial - Eclipse Project

when the Maven project is imported into the IDE). Choose or define the server and click  Finish

Spring MVC JPA Tutorial - Eclipse Project

project is imported into the IDE). Choose or define the server and click  Finish . Eclipse

Step 4: Add a Controller Class

is automatically constructed and injected by Spring into the guestDao field (because it is annotated

JPA Web App Tutorial - Eclipse Project

is imported into the IDE). Choose or define the server and click Finish . Eclipse should open an internal

Step 4: Add a Servlet Class

bean, which is instantiated and injected by the application server into the  guestDao field

Step 4: Add a Servlet Class

server into the guestDao field automatically (since the field is marked with the @EJB annotation

[ODB1] Chapter 3 - Persistent Classes

a JDO enhancer into the IDE Build command. A simple alternative that does not require a plugin ... , which enables transparent use of old schema instances. When an old instance is loaded into the memory it is automatically converted into an instance of the new up-to-date persistent class

[ODB1] Chapter 9 - ObjectDB Explorer

at the bottom. The "Database" window is also split into two sub windows. The top sub window displays ... to export JDOQL queries that you test in the Explorer into your Java code. Refreshing the Cache

[ODB1] Chapter 1 - About ObjectDB

one of the ObjectDB editions can be easily integrated into any JSP/servlet web application. The JDO ... system that supports servlets/JSP. Just drop the JDO and ObjectDB jar files into the WEB-INF/lib

[ODB1] Chapter 6 - Persistent Objects

  Object States Objects in a JDO application are divided into persistent objects

[ODB1] Chapter 7 - JDOQL Queries

can also be separated into two commands: Query query = pm.newQuery(Person.class, "this.age = 18"); query.compile